.description {
  background-color: white;
  margin-bottom: 0;
  padding: 75px;
}

.description h1 {
  color: #641734;
  font-size: 1.4rem;
  font-family: "Platypi", "Arial";
}

.description p {
  color: #000000;
  font-size: 1rem;
  font-family: "Jost", "Arial";
}

.description2 {
  background-color: white;
  margin-bottom: 0;
  padding: 75px;
}

.description2 h1 {
  color: #641734;
  font-size: 1.4rem;
  font-family: "Platypi", "Arial";
}

.description2 p {
  color: #000000;
  font-size: 1rem;
  font-family: "Jost", "Arial";
}

.additional-content {
  margin-top: 0;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  padding: 20px;
  background-color: #ffffff;
}

.image-button {
  background-color: rgb(255, 255, 255);
  position: relative;
  text-align: center;
  transition: transform 0.3s ease;
  width: calc(25% - 10px);
  border-radius: 15px;
  margin-left: 20px;
}

.image-button img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.button-content {
  padding: 20px;
  background-color: rgba(0, 0, 0, 0);
}

.button-header {
  font-family: 'Platypi', 'Arial';
  font-size: 20px;
  color: #641734;
  margin-bottom: 50px;
}

.number-header {
  font-family: 'Jost', 'Arial';
  font-size: 45px;
  color: #000000;
}

.button-description {
  font-family: 'Jost', 'Arial';
  font-size: 18px;
  color: rgb(0, 0, 0);
  margin-bottom: 20px;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  font-family: 'Jost', 'Arial';
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: white;
  background-color: #641734;
  border-radius: 5px;
}

.image-button:hover {
  transform: scale(1.025);
}

.additional-content2 {
  padding: 0px;
  text-align: center;
  line-height: 1.4;
}

.additional-content2 h1 {
  color: #ffffff;
  font-size: 2rem;
  text-align: center;
  font-family: 'Jost', 'Arial';
}

.additional-content2 p {
  margin-top: 30px;
  margin-bottom: 30px;
  margin-left: 60px;
  margin-right: 60px;
  color: #ffffff;
  font-size: 1.2rem;
  font-family: 'Jost', 'Arial';
  text-align: center;
  font-weight: bold;
}

.text-overlay {
  position: absolute;
  left: 0;
  width: 25%;
  padding: 20px;
  margin-left: 50px;
  box-sizing: border-box;
  color: #ffffff;
  opacity: 0;
  animation: fadeInAnimation 2s ease-in forwards;
  line-height: 20px;
}

@keyframes fadeInAnimation {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.text-overlay h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-family: 'Jost', 'Arial';
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0);
  line-height: 1;
}

.text-overlay h2 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-family: 'Jost', 'Arial';
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0);
  line-height: 0.5;
  color: #212121;
}

.text-overlay p {
  font-size: 1rem;
  font-family: 'Jost', 'Arial';
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0);
}

.address {
  margin: 100px 0 0 0;
  width: 500px;
  animation: fadeInAnimation 2s ease-in forwards;
  position: absolute;
  left: 0;
  text-align: left;
  line-height: 50px;
  font-family: 'Rock Salt', 'Arial';
  margin-left: 90px;
}

.address h1 {
  box-sizing: border-box;
  color: #ffffff;
  font-size: 2.9rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0);
  line-height: 3.5rem;
}

.address h2 {
  box-sizing: border-box;
  color: #ffffff;
  font-size: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0);
  line-height: 1.5rem;
}

/* Mobile styles */
@media (max-width: 1000px) {
  .description {
    padding: 40px;
  }

  .description2 {
    padding: 40px;
  }

  .additional-content {
    flex-direction: column;
    padding: 20px;
    align-items: center;
    /* Center items horizontally */
  }

  .image-button {
    margin-right: 20px;
    width: 90%;
    /* Reduce width for better spacing */
    margin-bottom: 20px;
  }

  .button-content {
    padding: 10px;
  }

  .button-header {
    font-size: 18px;
  }

  .number-header {
    font-size: 36px;
  }

  .button-description {
    font-size: 16px;
  }

  .button {
    font-size: 14px;
  }

  .additional-content2 p {
    margin: 20px;
    font-size: 1rem;
  }

  .text-overlay {
    width: 100%;
    margin-left: 0;
    padding: 10px;
  }

  .text-overlay h1 {
    font-size: 2rem;
  }

  .text-overlay h2 {
    font-size: 1rem;
  }

  .address {
    width: 90%;
    /* Adjust banner width for mobile */
    left: 50%;
    /* Center it horizontally */
    transform: translateX(-50%);
    /* Offset it by half its width to truly center */
    text-align: center;
    /* Center the text */
    margin-left: 0;
    /* Reset margin-left for mobile */
  }

  .address h1 {
    font-size: 2rem;
    /* Font size for mobile */
    line-height: 2.5rem;
    /* Adjust line height for mobile */
  }

  .address h2 {
    font-size: 0.9rem;
    /* Font size for mobile */
    line-height: 1.2rem;
    /* Adjust line height for mobile */
  }
}